home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / Clinic / COMSolution1 / ComServer1.dpr < prev    next >
Encoding:
Text File  |  2001-04-05  |  288 b   |  20 lines

  1. library ComServer1;
  2.  
  3. uses
  4.   ComServ,
  5.   ComServer1_TLB in 'ComServer1_TLB.pas',
  6.   ComClass1Impl in 'ComClass1Impl.pas' {ComClass1: CoClass};
  7.  
  8. exports
  9.   DllGetClassObject,
  10.   DllCanUnloadNow,
  11.   DllRegisterServer,
  12.   DllUnregisterServer;
  13.  
  14. {$R *.TLB}
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19. end.
  20.